/* CSS RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 100%;
}

@font-face {
  font-family: "victors";
  src: url("../fonts/victors.otf") format("opentype");
}

body {
  font-family: "victors", sans-serif;
  background-color: #fff;
  color: #222;
}

.inhalt {
  max-width: 800px;
  margin: 0;
  padding: 2rem;
  line-height: 1.6;
  margin-inline: auto;
}

h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.symbol-zeile {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.symbol-erklärung {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.symbol-erklärung img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.text-erklärung {
  flex: 1;
  font-size: 1rem;
  line-height: 1.4;
}

.zurück-link {
  display: block;
  margin-top: 3rem;
  font-size: 1rem;
  color: #333;
  text-decoration: underline;

  float:left;
}

.zurück-link:hover {
  text-decoration: none;
}

.einleitung {
  margin-bottom: 2rem;
}

.Aufzählung {
  margin-bottom: 1rem;
}